home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / windows / boyer04.zip / BOYER.DEF < prev    next >
Text File  |  1996-01-13  |  482b  |  22 lines

  1. LIBRARY         BOYER
  2.  
  3. DESCRIPTION     'Boyer-Moore Text Search Algorithm'
  4.  
  5. STUB        'WINSTUB.EXE'
  6.  
  7. EXETYPE     WINDOWS
  8. PROTMODE
  9. CODE        MOVEABLE PRELOAD DISCARDABLE
  10. DATA         MOVEABLE PRELOAD SINGLE
  11.  
  12. HEAPSIZE    1024
  13.  
  14. EXPORTS
  15.         WEP                     @1
  16.         SetFindPattern          @2
  17.         Find                    @3
  18.         FindBackward            @4
  19.         FindIC                  @5
  20.         FindBackwardIC          @6
  21.         FreeFindPattern         @7
  22.